Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
login-lockdown
/
js
/
/home/ariannadhf/www/wp-content/plugins/login-lockdown/js/loginlockdown-global.js
/** * Login Lockdown * https://wploginlockdown.com/ * (c) WebFactory Ltd, 2022 - 2026, www.webfactoryltd.com */ // global object for all Login Lockdown functions jQuery(document).ready(function ($) { if (typeof loginlockdown_pointers != "undefined") { $.each(loginlockdown_pointers, function (index, pointer) { if (index.charAt(0) == "_") { return true; } $(pointer.target) .pointer({ content: "<h3>Login Lockdown</h3><p>" + pointer.content + "</p>", pointerWidth: 380, position: { edge: pointer.edge, align: pointer.align, }, close: function () { $.get(ajaxurl, { action: "loginlockdown_run_tool", _ajax_nonce: loginlockdown_pointers.run_tool_nonce, tool: "loginlockdown_dismiss_pointer", }); }, }) .pointer("open"); }); } }); // on ready